Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / identity-provider / instances / {alias} / mappers

Path parameters:
realm - realm name (not id!)
alias -

Sub-Resources
Resources
NameDescription
{id}

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/identity-provider/instances/{alias}/mappers 
POST /admin/realms/{realm}/identity-provider/instances/{alias}/mappers 

Method Detail

GET /admin/realms/{realm}/identity-provider/instances/{alias}/mappers

HTTP Example:
GET /admin/realms/{realm}/identity-provider/instances/{alias}/mappers
API Example:

IdentityProviderResource.getMappers({'realm': /* name realm name (not id!) */,
  'alias': …});

Output:
List<IdentityProviderMapperRepresentation>
Produces:
application/json

POST /admin/realms/{realm}/identity-provider/instances/{alias}/mappers

HTTP Example:
POST /admin/realms/{realm}/identity-provider/instances/{alias}/mappers
API Example:

IdentityProviderResource.addMapper({'realm': /* name realm name (not id!) */,
  'alias': …,
  '$entity': …});

Input:
IdentityProviderMapperRepresentation
Output:
Response
Consumes:
application/json

Keycloak REST Services 1.5.0-Final